Allows bootstrapping win64 from win32 snapshot.
authorPeter Atashian <retep998@gmail.com>
Thu, 11 Sep 2014 18:26:22 +0000 (14:26 -0400)
committerPeter Atashian <retep998@gmail.com>
Thu, 11 Sep 2014 18:26:22 +0000 (14:26 -0400)
Remove triple = 'i686-pc-mingw32' once win64 snapshot is made.

Signed-off-by: Peter Atashian <retep998@gmail.com>
src/etc/dl-snapshot.py

index e831855fa0a88596fd1c09211bfae9816dfd8434..cb77486110bc4f553d45e166c69247c70ce1b7e2 100644 (file)
@@ -27,6 +27,9 @@ elif triple == 'x86_64-apple-darwin':
     me = mac64
 elif triple == 'i686-pc-mingw32':
     me = win32
+elif triple == 'x86_64-w64-mingw32':
+    triple = 'i686-pc-mingw32'
+    me = win32
 else:
     raise Exception("no snapshot for the triple: " + triple)